home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form2
- BorderStyle = 3 'Fixed Double
- Caption = "Form2"
- ClientHeight = 1785
- ClientLeft = 1605
- ClientTop = 2130
- ClientWidth = 3795
- ControlBox = 0 'False
- Height = 2190
- Left = 1545
- LinkTopic = "Form2"
- ScaleHeight = 1785
- ScaleWidth = 3795
- Top = 1785
- Width = 3915
- Begin CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 375
- Left = 2520
- TabIndex = 2
- Top = 1080
- Width = 1095
- End
- Begin CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 2520
- TabIndex = 1
- Top = 600
- Width = 1095
- End
- Begin ComboBox Combo1
- Height = 300
- Left = 240
- TabIndex = 0
- Text = "Combo1"
- Top = 120
- Width = 2535
- End
- Begin Label Label1
- Caption = "Press Return key to trigger OK button, or Escape key to trigger Cancel button."
- Height = 975
- Left = 240
- TabIndex = 3
- Top = 600
- Width = 2055
- End
- Option Explicit
- Sub cmdCancel_Click ()
- Unload Form2
- End Sub
- Sub cmdOK_Click ()
- Unload Form2
- End Sub
-